home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / include / qdockarea.h.z / qdockarea.h
C/C++ Source or Header  |  2002-04-08  |  6KB  |  191 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qdockarea.h   3.0.3   edited Oct 31 10:43 $
  3. **
  4. ** Definition of the QDockArea class
  5. **
  6. ** Created : 001010
  7. **
  8. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the workspace module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition licenses may use this
  22. ** file in accordance with the Qt Commercial License Agreement provided
  23. ** with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QDOCKAREA_H
  39. #define QDOCKAREA_H
  40.  
  41. #ifndef QT_H
  42. #include "qwidget.h"
  43. #include "qptrlist.h"
  44. #include "qdockwindow.h"
  45. #include "qlayout.h"
  46. #include "qvaluelist.h"
  47. #include "qguardedptr.h"
  48. #include "qtextstream.h"
  49. #endif // QT_H
  50.  
  51. #ifndef QT_NO_MAINWINDOW
  52.  
  53. class QSplitter;
  54. class QBoxLayout;
  55. class QDockAreaLayout;
  56. class QMouseEvent;
  57. class QDockWindowResizeHandle;
  58. class QDockAreaPrivate;
  59.  
  60. #if defined(Q_TEMPLATEDLL)
  61. // MOC_SKIP_BEGIN
  62. template class Q_EXPORT QValueList<QRect>;
  63. template class Q_EXPORT QPtrList<QDockWindow>;
  64. // MOC_SKIP_END
  65. #endif
  66.  
  67. class Q_EXPORT QDockAreaLayout : public QLayout
  68. {
  69.     Q_OBJECT
  70.     friend class QDockArea;
  71.  
  72. public:
  73.     QDockAreaLayout( QWidget* parent, Qt::Orientation o, QPtrList<QDockWindow> *wl, int space = -1, int margin = -1, const char *name = 0 )
  74.     : QLayout( parent, space, margin, name ), orient( o ), dockWindows( wl ), parentWidget( parent ) { init(); }
  75.     ~QDockAreaLayout() {}
  76.  
  77.     void addItem( QLayoutItem * ) {}
  78.     bool hasHeightForWidth() const;
  79.     int heightForWidth( int ) const;
  80.     int widthForHeight( int ) const;
  81.     QSize sizeHint() const;
  82.     QSize minimumSize() const;
  83.     QLayoutIterator iterator();
  84.     QSizePolicy::ExpandData expanding() const { return QSizePolicy::NoDirection; }
  85.     void invalidate();
  86.     Qt::Orientation orientation() const { return orient; }
  87.     QValueList<QRect> lineList() const { return lines; }
  88.     QPtrList<QDockWindow> lineStarts() const { return ls; }
  89.  
  90. protected:
  91.     void setGeometry( const QRect& );
  92.  
  93. private:
  94.     void init();
  95.     int layoutItems( const QRect&, bool testonly = FALSE );
  96.     Qt::Orientation orient;
  97.     bool dirty;
  98.     int cached_width, cached_height;
  99.     int cached_hfw, cached_wfh;
  100.     QPtrList<QDockWindow> *dockWindows;
  101.     QWidget *parentWidget;
  102.     QValueList<QRect> lines;
  103.     QPtrList<QDockWindow> ls;
  104.  
  105. };
  106.  
  107. class Q_EXPORT QDockArea : public QWidget
  108. {
  109.     Q_OBJECT
  110.     Q_ENUMS( HandlePosition )
  111.     Q_PROPERTY( Orientation orientation READ orientation )
  112.     Q_PROPERTY( int count READ count )
  113.     Q_PROPERTY( bool empty READ isEmpty )
  114.     Q_PROPERTY( HandlePosition handlePosition READ handlePosition )
  115.  
  116.     friend class QDockWindow;
  117.     friend class QDockWindowResizeHandle;
  118.     friend class QDockAreaLayout;
  119.  
  120. public:
  121.     enum HandlePosition { Normal, Reverse };
  122.  
  123.     QDockArea( Orientation o, HandlePosition h = Normal, QWidget* parent=0, const char* name=0 );
  124.     ~QDockArea();
  125.  
  126.     void moveDockWindow( QDockWindow *w, const QPoint &globalPos, const QRect &rect, bool swap );
  127.     void removeDockWindow( QDockWindow *w, bool makeFloating, bool swap, bool fixNewLines = TRUE );
  128.     void moveDockWindow( QDockWindow *w, int index = -1 );
  129.     bool hasDockWindow( QDockWindow *w, int *index = 0 );
  130.  
  131.     void invalidNextOffset( QDockWindow *dw );
  132.  
  133.     Orientation orientation() const { return orient; }
  134.     HandlePosition handlePosition() const { return hPos; }
  135.  
  136.     bool eventFilter( QObject *, QEvent * );
  137.     bool isEmpty() const;
  138.     int count() const;
  139.     QPtrList<QDockWindow> dockWindowList() const;
  140.  
  141.     bool isDockWindowAccepted( QDockWindow *dw );
  142.     void setAcceptDockWindow( QDockWindow *dw, bool accept );
  143.  
  144. public slots:
  145.     void lineUp( bool keepNewLines );
  146.  
  147. private:
  148.     struct DockWindowData
  149.     {
  150.     int index;
  151.     int offset;
  152.     int line;
  153.     QSize fixedExtent;
  154.     QGuardedPtr<QDockArea> area;
  155.     };
  156.  
  157.     int findDockWindow( QDockWindow *w );
  158.     int lineOf( int index );
  159.     DockWindowData *dockWindowData( QDockWindow *w );
  160.     void dockWindow( QDockWindow *dockWindow, DockWindowData *data );
  161.     void updateLayout();
  162.     void invalidateFixedSizes();
  163.     int maxSpace( int hint, QDockWindow *dw );
  164.     void setFixedExtent( int d, QDockWindow *dw );
  165.     bool isLastDockWindow( QDockWindow *dw );
  166.  
  167. private:
  168.     Orientation orient;
  169.     QPtrList<QDockWindow> *dockWindows;
  170.     QDockAreaLayout *layout;
  171.     HandlePosition hPos;
  172.     QPtrList<QDockWindow> forbiddenWidgets;
  173.     QDockAreaPrivate *d;
  174.  
  175. private:    // Disabled copy constructor and operator=
  176. #if defined(Q_DISABLE_COPY)
  177.     QDockArea( const QDockArea & );
  178.     QDockArea& operator=( const QDockArea & );
  179. #endif
  180.  
  181. };
  182.  
  183. #ifndef QT_NO_TEXTSTREAM
  184. Q_EXPORT QTextStream &operator<<( QTextStream &, const QDockArea & );
  185. Q_EXPORT QTextStream &operator>>( QTextStream &, QDockArea & );
  186. #endif
  187.  
  188. #endif
  189.  
  190. #endif //QT_NO_MAINWINDOW
  191.